{% extends 'base.html' %} {% block title %}Форум - МОЙ НЕ САМ{% endblock %} {% block content %}

Форум

{% if request.user.is_authenticated %} {% endif %}
{% if topics %}
{% for topic in topics %}
{{ topic.title }}
{{ topic.created_at|date:"d.m.Y H:i" }}

{{ topic.content|truncatewords:20 }}

Автор: {% if topic.author %} {{ topic.author.get_full_name|default:topic.author.username }} {% else %} Удаленный пользователь {% endif %} {{ topic.comment_count }} комментариев
{% endfor %}
{% else %}

На форуме пока нет тем. {% if request.user.is_authenticated %}Вы можете создать первую тему.{% else %}Авторизуйтесь, чтобы создать тему.{% endif %}

{% endif %} {% if not request.user.is_authenticated %}

Войдите или зарегистрируйтесь, чтобы создавать темы и участвовать в обсуждениях.

{% endif %} {% if request.user.is_authenticated %} {% endif %} {% endblock %}